home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / CPP / VCW411.ZIP / GRAPHAPP.H < prev    next >
Encoding:
C/C++ Source or Header  |  1995-05-10  |  1.4 KB  |  65 lines

  1. #ifndef   __GRAPHAPP_H
  2. #define   __GRAPHAPP_H
  3.  
  4. // -[Keep_Heading]-
  5.  
  6.  
  7. // -[Copyright_Mesg]-
  8. // --------------------------------------------------------------- //
  9. // (c) Copyright 1993-1994. Step Ahead Software Pty Limited. All rights reserved.
  10. // Class Header Filename: GRAPHAPP.h
  11. // Description: 
  12. // Graphics application developed with C++Creator. This class is derived from
  13. // TApplication.
  14. // --------------------------------------------------------------- //
  15. #define    CC_GEN    1
  16. #include    <APPLICAT.h>
  17.  
  18.  
  19. // -[Keep_h_Extras]-
  20.  
  21.  
  22. // -[Class_Dec]-
  23. class GraphicApplication;
  24. typedef GraphicApplication * PGraphicApplication;
  25. typedef GraphicApplication & RGraphicApplication;
  26. typedef GraphicApplication * & RPGraphicApplication;
  27. typedef const GraphicApplication * PCGraphicApplication;
  28. typedef const GraphicApplication & RCGraphicApplication;
  29.  
  30.  class GraphicApplication : public TApplication
  31. {
  32. // -[Keep_Class_Extras]-
  33.  
  34.  
  35. // -[Member_Data_Decs]-
  36.  
  37.  
  38. // -[Member_Function_Decs]-
  39.   public:
  40.  
  41.     GraphicApplication(LPSTR AName, HANDLE hInstance, HANDLE hPrevInstance, LPSTR lpCmdLine, int nCmdShow);
  42.  
  43.     virtual void InitMainWindow(void);
  44.   protected:
  45.   private:
  46.  
  47.  
  48. // -[Persistent_1]-
  49. };
  50.  
  51. // -[Persistent_2]-
  52.  
  53.  
  54. // -[Keep]-
  55.  
  56.  
  57. // -[Global_Data_Decs]-
  58.  
  59.  
  60. // -[Global_Function_Decs]-
  61.  
  62. // -[Function_Defs]-
  63.  
  64. // -[End_Cond]-
  65. #endif    __GRAPHAPP_H